how to find if a value is even or odd in python

53

how to check if a number is odd python -

num = int(input("Enter a number: "))  
if (num % 2) == 0:  
   print("{0} is Even number".format(num))  
else:  
   print("{0} is Odd number".format(num))  

Comments

Submit
0 Comments